home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / DragClick / Sources / GestaltStuff.cpp < prev    next >
Text File  |  1996-06-21  |  563b  |  22 lines

  1. // =============================================================================
  2. //
  3. //    InitUtils.cp
  4. //    
  5. //    Author: Greg Friedman
  6. //    Date:    MacHack '96
  7. //
  8. //    Do whatever you want with this source. Don't blame me if it doesn't work.
  9. //
  10. // =============================================================================
  11.  
  12. #ifndef __GESTALTSTUFF__
  13. #include "GestaltStuff.h"
  14. #endif
  15.  
  16. Boolean gHasProcessMgr = FALSE;
  17.  
  18. Boolean HasGestaltAttribute(OSType attr, short itsBit)
  19. {
  20.     long response;
  21.     return (Gestalt(attr, &response) == noErr) && (((response >> itsBit) & 1) != 0);
  22. }